home *** CD-ROM | disk | FTP | other *** search
- #include <stdio.h>
- #import <appkit/appkit.h>
-
- @interface Interval:Object
- {
- unsigned long from;
- unsigned long to;
- }
- - (BOOL)isIn:(unsigned long)number;
- - (unsigned long)lowerBound;
- - (unsigned long)upperBound;
- - initWithLower:(unsigned long)low upper:(unsigned long)high;
- - dumpAsAsciiIn:(NXStream *)aStream;
-
- @end
-